home *** CD-ROM | disk | FTP | other *** search
/ Almathera Ten Pack 3: CDPD 3 / Almathera Ten on Ten - Disc 3: CDPD3.iso / fish / 726-750 / 742 / rkrm_lib3 / rkrm_lib3.lha / Utility / hooks1.c < prev    next >
C/C++ Source or Header  |  1992-09-03  |  3KB  |  108 lines

  1. ;/* hooks1.c - Execute me to compile me with SAS C 5.10
  2. LC -b1 -cfis -j73 hooks1.c
  3. Blink FROM LIB:c.o,hooks1.o TO hooks1 LIBRARY LIB:LC.lib,LIB:Amiga.lib
  4. quit
  5. */
  6.  
  7. /*
  8. Copyright (c) 1992 Commodore-Amiga, Inc.
  9.  
  10. This example is provided in electronic form by Commodore-Amiga, Inc. for
  11. use with the "Amiga ROM Kernel Reference Manual: Libraries", 3rd Edition,
  12. published by Addison-Wesley (ISBN 0-201-56774-1).
  13.  
  14. The "Amiga ROM Kernel Reference Manual: Libraries" contains additional
  15. information on the correct usage of the techniques and operating system
  16. functions presented in these examples.  The source and executable code
  17. of these examples may only be distributed in free electronic form, via
  18. bulletin board or as part of a fully non-commercial and freely
  19. redistributable diskette.  Both the source and executable code (including
  20. comments) must be included, without modification, in any copy.  This
  21. example may not be published in printed form or distributed with any
  22. commercial product.  However, the programming techniques and support
  23. routines set forth in these examples may be used in the development
  24. of original executable software products for Commodore Amiga computers.
  25.  
  26. All other rights reserved.
  27.  
  28. This example is provided "as-is" and is subject to change; no
  29. warranties are made.  All use is at your own risk. No liability or
  30. responsibility is assumed.
  31. */
  32.  
  33.     #include <exec/types.h>
  34.     #include <exec/libraries.h>
  35.     #include <utility/hooks.h>
  36.     #include <dos.h>
  37.  
  38.     #include <clib/exec_protos.h>
  39.     #include <clib/dos_protos.h>
  40.     #include <clib/utility_protos.h>
  41.  
  42.     #include <stdio.h>
  43.  
  44.     extern struct Library *SysBase;
  45.     struct Library *UtilityBase;
  46.  
  47.     #define ASM     __asm
  48.     #define REG(x)  register __ ## x
  49.  
  50.     /* This function converts register-parameter Hook calling
  51.      * convention into standard C conventions.  It requires a C
  52.      * compiler that supports registerized parameters, such as
  53.      * SAS/C 5.xx or greater.
  54.      */
  55.  
  56.     ULONG ASM
  57.     hookEntry(REG(a0) struct Hook *h, REG(a2) VOID *o, REG(a1) VOID *msg)
  58.     {
  59.         return ((*(ULONG (*)(struct Hook *,VOID *,VOID *))(h->h_SubEntry))(h, o, msg));
  60.     }
  61.  
  62.     /* This simple function is used to initialize a Hook */
  63.     VOID InitHook (struct Hook *h, ULONG (*func)(), VOID *data)
  64.     {
  65.         /* Make sure a pointer was passed */
  66.         if (h)
  67.         {
  68.             /* Fill in the Hook fields */
  69.             h->h_Entry = (ULONG (*)()) hookEntry;
  70.             h->h_SubEntry = func;
  71.             h->h_Data = data;
  72.         }
  73.     }
  74.  
  75.     /* This function only prints out a message indicating that we are
  76.      * inside the callback function.
  77.      */
  78.  
  79.     ULONG MyFunction (struct Hook *h, VOID *o, VOID *msg)
  80.     {
  81.         /* Obtain access to the global data segment */
  82.         geta4();
  83.  
  84.         /* Debugging function to send a string to the serial port */
  85.         printf("Inside MyFunction()\n");
  86.  
  87.         return (1);
  88.     }
  89.  
  90.     int main (int argc, char **argv)
  91.     {
  92.         struct Hook h;
  93.  
  94.         /* Open the utility library */
  95.         if (UtilityBase = OpenLibrary ("utility.library", 36))
  96.         {
  97.             /* Initialize the callback Hook */
  98.             InitHook (&h, MyFunction, NULL);
  99.  
  100.             /* Use the utility library function to invoke the Hook */
  101.             CallHookPkt (&h, NULL, NULL);
  102.  
  103.             /* Close utility library now that we're done with it */
  104.             CloseLibrary (UtilityBase);
  105.         }
  106.         else printf ("Couldn't open utility.library\n");
  107.     }
  108.